abbr
- <abbr> elements represent an abbreviation or an acronym.
- The title attribute may be used to provide the full version of the term. This information may be displayed in certain cases (such as mouse hover).
This document was authored with HTML.
This document was authored with <abbr title="HyperText Markup Language">HTML</abbr>.
cite
- The <cite> element identifies the name of a work – a book, song, movie, TV show, painting, sculpture, etc.
- Do not use <cite> to identify the name of a person.
- The <cite> element is distinct from the cite attribute (see below)
In 2010, Janelle Monáe released her debut studio album, The ArchAndroid (Suites II and III).
In 2010, Janelle Monáe released her debut studio album, <cite>The ArchAndroid (Suites II and III)</cite>.
code
- <code> elements represent sample computer code – for example HTML code.
To define R&B as an abbreviation use the <abbr> like this:
<abbr>R&B</abbr>
.To define R&B as an abbreviation use the <abbr> like this: <code><abbr>R&B</abbr></code>.
del
- The <del> element indicate content that should be (or has been) revised out of the document.
- The cite attribute may be used to reference a reason for the removal of the content.
- The value of the cite attribute must be a valid URI.
- The datetime attribute may be used to indicate when the content was removed.
- The value of the datetime attribute must be authored in the standardized datetime format: YYYY-MM-DDThh:mm:ss.sTZD
CSCI 115 takes place on Mondays and ThursdaysTuesdays and Wednesdays.
CSCI 115 takes place on <del>Mondays and Thursdays</del><ins>Tuesdays and Wednesdays</ins>.
dfn
- The <dfn> element identifies the defining instance of a term (usualy the first time a term appears in a document).
- The title attribute may be used to provide the definition of the term if the term is not defined in context. This information may be displayed in certain cases (such as mouse hover).
The Internet is a system of interconnected computer networks.
<dfn>The Internet</dfn> is a system of interconnected computer networks.
em
- The <em> element is used to indicate content that has stress emphasis.
- The <em> element is often used to indicate contrasted terms.
- Nesting <em> elements within other <em> elements may be used to indicate an elevated degree of emphasis.
The Amazing Spider-Man..
The <em>Amazing</em> Spider-Man..
ins
- The <ins> element indicate content that should be (or has been) revised into the document.
- <ins> elements are often used to indicate content in a related <del> element.
- The cite attribute may be used to reference a reason for the insertion of the content.
- The value of the cite attribute must be a valid URI.
- The datetime attribute may be used to indicate when the content was removed.
- The value of the datetime attribute must be authored in the standardized datetime format: YYYY-MM-DDThh:mm:ss.sTZD
CSCI 115 takes place on Mondays and ThursdaysTuesdays and Wednesdays.
CSCI 115 takes place on <del>Mondays and Thursdays</del><ins>Tuesdays and Wednesdays</ins>.
kbd
- <kbd> elements are used to identify keyboard input.
Press and hold the Control, Alt, and Delete keys to bring up the Task Manager.
Press and hold the <kbd>Control</kbd>, <kbd>Alt</kbd>, and <kbd>Delete</kbd> keys to bring up the Task Manager.
mark
- The <mark> element represents highlighted content, due to its relevance in a particular context.
- A common use <mark> of the mark element is to highlight search terms.
- <mark> should not be used to indicate important content, use <strong> instead.
- Do not use <mark> for purely stylistic reasons.
The following text is marked: the mark element is used to highlight text.
The following text is marked: <mark>the mark element is used to highlight text<mark>.
q
- <q> elements indicate quoted content.
- The <q> element appends quotation marks before and after the enclosed content.
- The cite attribute may be used to reference a source for the quote
- The value of the cite attribute must be a valid URI.
On 2 September 2005, Kanye West said the following during a benefit concert for Hurricane Katrina relief on NBC:
George Bush doesn't care about black people.
On 2 September 2005, Kanye West said the following during a benefit concert for Hurricane Katrina relief on NBC: <q cite="http://youtu.be/9pVTrnxCZaQ?t=1m30s">George Bush doesn't care about black people.</q>
s
- The <s> element indicates content that is no longer correct, but should still be displayed on the page.
- Do not confuse <s> with <del>, if content should be removed from a page use <del>.
On Sale: Detective Comics #27 SOLD OUT
On Sale: <s>Detective Comics #27</s> SOLD OUT
samp
- <samp> elements indicate sample output form a computer program.
Using the character entity
<
will display < on the screen.Using the character entity <code>&lt;</code> will display <samp><</samp> on the screen.
small
- The <small> element indicates “small print” such as legal text or copyright notices.
- Do not use <small> for purely stylistic purposes.
This page uses material from the Wikipedia, which is released under the Creative Commons Attribution-Share-Alike License 3.0.
<small>This page uses material from the Wikipedia, which is released under the Creative Commons Attribution-Share-Alike License 3.0.</small>
strong
- The <strong> element indicates particularly important content.
- Nesting <strong> elements within other <strong> elements may be used to indicate an elevated degree of importance.
Do not use <mark> to identify important text, use <strong> instead.
<strong>Do not</strong> use <mark> to identify important text, use <strong> instead.
sub
- <sub> indicates content that, for semantic reasons, should appear below the baseline text.
- <sub> is often used as part of chemical or mathematical formulas.
- Do not use <sub> for purely stylistic purposes.
H2O is the chemical formula of water.
H<sub>2</sub>O is the chemical formula of water.
sup
- <sup> indicates content that, for semantic reasons, should appear above the baseline text.
- <sup> is often used as part of mathematical formulas.
- Do not use <sup> for purely stylistic purposes.
22 = 4
2<sup>2</sup> = 4
time
- The <time> element identifies enclosed content as a date or time
- The datetime attribute must accompany the element if the encapsulated content is not presented in the standard date time format.
- If present the datetime attribute value must be presented in the standard machine readable datetime format.
- If given content can not be translated into the standardized datetime format, the <time> element should not be used.
Janelle Monáe Robinson was born on .
Janelle Monáe Robinson was born on <time datetime="1985-12-01">December 1, 1985</time>.
var
- <var> elements represent variables.
- <var> is often used as part of a mathematical formula or a programing context.
X*2 = X+X
<var>X</var>*2 = <var>X</var>+<var>X</var>